home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / WebSites / MailingLists / AMOSLIST.0799 / 000017_nobody_Tue Jul 6 17:57:59 1999.msg < prev    next >
Internet Message Format  |  1999-08-02  |  4KB

  1. Received: from onelist.com (pop.onelist.com [209.207.164.207])
  2.     by osf1.gmu.edu (8.8.8/8.8.8) with SMTP id RAA13429
  3.     for <mcox4@osf1.gmu.edu>; Tue, 6 Jul 1999 17:57:58 -0400 (EDT)
  4. Received: (qmail 25733 invoked by alias); 6 Jul 1999 21:54:08 -0000
  5. Received: (qmail 15603 invoked from network); 6 Jul 1999 21:12:13 -0000
  6. Received: from unknown (HELO mail.enterprise.net) (194.72.192.18) by pop.onelist.com with SMTP; 6 Jul 1999 21:12:13 -0000
  7. Received: from enterprise.net (andrewcrowe@max03-032.enterprise.net [194.72.196.32]) by mail.enterprise.net (8.8.5/8.8.5) with SMTP id WAA03669 for <amos-list@onelist.com>; Tue, 6 Jul 1999 22:10:15 +0100 (GMT/BST)
  8. From: Andrew Crowe <andrewcrowe@enterprise.net>
  9. To: amos-list@onelist.com
  10. Date: Tue, 06 Jul 1999 18:54:04 +0000
  11. Message-ID: <yam7856.226.1196859016@mail.enterprise.net>
  12. In-Reply-To: <yam7856.1265.3410032@mail.netspace.net.au>
  13. X-Mailer: YAM 2.0Preview7 [020] - Amiga Mailer by Marcel Beck - http://www.yam.ch
  14. Mailing-List: list amos-list@onelist.com; contact amos-list-owner@onelist.com
  15. Delivered-To: mailing list amos-list@onelist.com
  16. Precedence: bulk
  17. List-Unsubscribe: <mailto:amos-list-unsubscribe@ONElist.com>
  18. Reply-to: amos-list@onelist.com
  19. Mime-Version: 1.0
  20. Content-type: multipart/mixed; boundary="BOUNDARY.1196859016.1"
  21. Subject: Re: [amos-list] Limit Mouse & Text files
  22. Status: O
  23. X-Status: 
  24.  
  25. Warning: This is a message in MIME format. Your mail reader does not
  26. support MIME. Some parts of this message will be readable as plain text.
  27. To see the rest, you will need to upgrade your mail reader. Following are
  28. some URLs where you can find MIME-capable mail programs for common platforms:
  29.  
  30.   Amiga............: YAM          http://www.yam.ch/
  31.   Unix.............: Metamail     ftp://ftp.bellcore.com/nsb/
  32.   Windows/Macintosh: Eudora       http://www.qualcomm.com/
  33.  
  34. General info about MIME can be found at:
  35.  
  36. http://www.cis.ohio-state.edu/hypertext/faq/usenet/mail/mime-faq/top.html
  37.  
  38.  
  39. --BOUNDARY.1196859016.1
  40. Content-Type: text/plain
  41.  
  42. Hi Everybody,
  43.  
  44. > 1. I've found that I can't get the mouse pointer below "XMouse=
  45. >   312"! I need it to reach about 400 or so..... Is it something 
  46. >   I'm doing wrong?  I have set Limit Mouse to 400 and it still
  47. >   doesn't work...
  48.  
  49.     312 is the sprite hardware limit I think...
  50.  
  51. You can use this to get round it, it moves a 'mouse pointer' in an infinite
  52. plane. The only problem is you can't have the original pointer visible.
  53.  
  54. You can set its limits to whatever you like
  55.  
  56. See ya.
  57. -- 
  58.        Manta Soft  -  Amiga programing & web page designing
  59.           Http://mantasoft.aio.co.uk/      ICQ: 21829166
  60.          Homepage updated 1/7/99 --- James Bond, Out Now!
  61.   - ------------------- Quote of the day: -------------------- -
  62. "Bother," said Pooh, as he stepped into the auto-sentry gun's
  63. line of sight.
  64.  
  65. --BOUNDARY.1196859016.1
  66. Content-Type: text/plain; name="infinitemouse.asc"
  67. Content-Disposition: attachment; filename="infinitemouse.asc"
  68.  
  69. Limit Mouse 0
  70. OX=160
  71. OY=100
  72. Hide 
  73. X Mouse=160
  74. Y Mouse=100
  75.  
  76.  
  77. Do 
  78.    
  79.    Rem   Start of routine     
  80.    X=X Mouse
  81.    Y=Y Mouse
  82.    If X<>160 or Y<>100
  83.       X Mouse=160
  84.       Y Mouse=100
  85.    End If 
  86.    OX=OX-(160-X)
  87.    OY=OY-(100-Y)
  88.    Rem    End of routine  
  89.    
  90.    Plot OX,OY
  91.    
  92.    
  93.    If OX<0 : OX=0 : End If 
  94.    If OX>400 : OX=400 : End If 
  95.    If OY<0 : OY=0 : End If 
  96.    If OY>200 : OY=200 : End If 
  97.    Rem  limiting routine...   
  98.    
  99.    
  100.    Print At(0,0);OX;"  ";OY;"  "
  101.    
  102.    
  103.    Wait Vbl 
  104.    
  105. Loop 
  106.  
  107. --BOUNDARY.1196859016.1--
  108.  
  109.